home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QRZ! Ham Radio 6
/
QRZ Ham Radio Callsign Database - Volume 6.iso
/
mac
/
files
/
amiga
/
rhinosrc.lha
/
ftp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-01
|
412b
|
17 lines
#ifndef _FTP_H
#define _FTP_H
/* Definitions common to both FTP servers and clients */
#define BLKSIZE 2048 /* Chunk size for file I/O */
#define ASCII_TYPE 0
#define IMAGE_TYPE 1
#define LOGICAL_TYPE 2
/* In ftpsubr.c: */
long sendfile __ARGS((FILE *fp,FILE *network,int mode,int hash));
long recvfile __ARGS((FILE *fp,FILE *network,int mode,int hash));
int isbinary __ARGS((FILE *fp));
#endif /* _FTP_H */